home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmille / Source / DrivingAceView.m < prev    next >
Text File  |  1991-01-11  |  467b  |  27 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "DrivingAceView.h"
  5. #import    "cards.h"
  6. #import    <assert.h>
  7.  
  8.  
  9. @implementation DrivingAceView
  10.  
  11. - init
  12. {
  13.  
  14.  
  15.     [ super init ];
  16.     bottomFaceBitmap        = [[ CardImage allocFromZone:cardZone ] initFromFile:DRIVING_ACE_BOTTOM_FACE ];
  17.     rotatedBottomFaceBitmap    = [[ CardImage allocFromZone:cardZone] initFromFile:DRIVING_ACE_ROTATED_BOTTOM_FACE ];
  18.     assert( bottomFaceBitmap );
  19.     assert( rotatedBottomFaceBitmap );
  20.     
  21.     return self;
  22. }
  23.  
  24.  
  25.  
  26. @end
  27.